-
Notifications
You must be signed in to change notification settings - Fork 7
chore: Add boilerplate CMake project and Taskfile tasks to lint CMake files. #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collaborator
Author
|
@davidlion Hey David you might want to ask Kirk on some things I've done here, since they are not really conforming to the version used by the latest commits in spider. |
… multiple times unnecessarily
davidlion
requested changes
Jan 27, 2025
Member
davidlion
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets just drop the CMake/ directory for now. I feel like those files have too little context atm.
Co-authored-by: davidlion <davidlion2@protonmail.com>
davidlion
reviewed
Jan 27, 2025
davidlion
approved these changes
Jan 27, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
lint:cmake-checkandlint:cmake-fixtasks for formatting following files:CMakeLists.txt.cmakesuffix.cmake.insuffixThe primary objective is to ensure that the
lint:cmake-checkandlint:cmake-fixworkflows are as general and portable as possible. Other repositories should be able to copy this file and use it with little to no modification.The CMake linting tasks in this PR follow the same approach as the one used in the initial lint taskfile of Spider, rather than the method adopted in the current version.
The initial version:
The current version:
The reason why we pick the first version:
gersemionce on the entire batch of files to be linted, while the second version runsgersemionce on every single file.sourcessection in the internal helper function. This is generally not a good practice since it might prevent other tasks that call this internal task from running.On top of the first version, this PR makes several improvements:
CMakeLists.txt, but also to other types of CMake files, as explained above.sourcessection to the top level ensures that top-level tasks operate independently and do not interfere with each other when determining whether execution is necessary.lint:cmake-check. The error code will be returned as normal when files are ill-formatted.Validation performed